projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d4d6f1
)
* src/comp.c (emit_lisp_obj_rval): Make use of NILP.
author
Andrea Corallo
<akrl@sdf.org>
Tue, 25 Jan 2022 21:15:51 +0000
(22:15 +0100)
committer
Andrea Corallo
<akrl@sdf.org>
Tue, 25 Jan 2022 21:15:51 +0000
(22:15 +0100)
src/comp.c
patch
|
blob
|
history
diff --git
a/src/comp.c
b/src/comp.c
index d8fe80df3a68effdeb18c27b6be4f4600a88afdf..d755df802f7ef2acada5205f64e43fcd66e321c5 100644
(file)
--- a/
src/comp.c
+++ b/
src/comp.c
@@
-1720,7
+1720,7
@@
emit_lisp_obj_rval (Lisp_Object obj)
emit_comment (format_string ("const lisp obj: %s",
SSDATA (Fprin1_to_string (obj, Qnil))));
- if (
EQ (obj, Qnil
))
+ if (
NILP (obj
))
{
gcc_jit_rvalue *n;
n = emit_rvalue_from_lisp_word ((Lisp_Word) iQnil);